* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero {
  background-image: url('back.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 80px); /* Resta el alto del navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}

nav {
  background-color: #082b07;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #7ff241; /* Línea de acento animada */
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #7ff241;
}

nav ul li a:hover::after {
  width: 100%;
}

.logo {
  color: #7ff241;
  font-weight: bold;
  font-size: 22px;
}

.logo span {
  color: white;
  display: block;
  font-size: 12px;
}

.registro-btn {
  background-color: white;
  color: #082b07;
  border-radius: 20px;
  padding: 8px 15px;
  font-weight: bold;
  text-decoration: none;
}

.contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.texto {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
}

.franja {
  font-size: 38px; /* Aumentado */
  font-weight: bold;
  color: white;
  padding: 8px 15px; /* Más relleno */
  width: fit-content;
}

.franja.oscuro {
  background-color: rgba(0, 40, 0, 0.85);
}

.franja.claro {
  background-color: #a7f452;
  color: black;
}

.formulario {
  background-color: white;
  border-radius: 20px;
  padding: 25px;
  width: 350px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.formulario input {
  width: 100%;
  margin: 10px 0;
  padding: 12px; /* Más espacio */
  font-size: 16px; /* Más grande */
  border-radius: 5px;
  border: 1px solid #ccc;
}

.formulario button {
  background-color: #0b4507;
  color: white;
  border: none;
  padding: 12px; /* Más alto */
  width: 100%;
  font-weight: bold;
  font-size: 16px; /* Más grande */
  border-radius: 5px;
  cursor: pointer;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp img {
  width: 30px;
  height: 30px;
}
.info-pico-placa {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background-color: white;
}

.info-columna {
  flex: 1;
  padding: 0 30px;
}

.info-columna.izquierda img {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: 0 auto;
}

.divisor {
  width: 2px;
  height: 250px;
  background-color: #2ea043; /* franja verde */
}

.info-columna.derecha p {
  font-size: 16px;
  color: #0c1e12;
  line-height: 1.6;
  text-align: justify;
}

.btn-secundario {
  margin-top: 25px;
  padding: 10px 20px;
  border: 2px solid #0b3c1d;
  background-color: transparent;
  color: #0b3c1d;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secundario:hover {
  background-color: #0b3c1d;
  color: white;
}
.paso-paso {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 80px 20px;
  background-color: #f0f0f0;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  border-radius: 24px;
  width: 360px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.card-header {
  background-color: #002a1c;
  padding: 40px;
  position: relative;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.card-header img {
  width: 100px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(360%) hue-rotate(45deg) brightness(90%) contrast(90%);
}

.triangle {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #002a1c;
}

.card-body {
  padding: 40px 20px 50px;
}

.card-body h3 {
  margin: 20px 0 8px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
}

.card-body p {
  margin-bottom: 25px;
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
}

.card-body button {
  background-color: white;
  border: 2px solid #002a1c;
  color: #002a1c;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.card-body button:hover {
  background-color: #d2ffb3;
}


.vehiculos-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 40px;
  background-color: #fff;
}

.vehiculos-left img {
  max-width: 260px;
  height: auto;
}

.vehiculos-divider {
  width: 2px;
  height: 220px;
  background-color: #75f94c;
}

.vehiculos-right {
  max-width: 600px;
}

.vehiculos-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  text-align: justify;
}

.vehiculos-right button {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid #002a1c;
  background: white;
  color: #002a1c;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.vehiculos-right button:hover {
  background-color: #d2ffb3;
}

body {
  margin: 0;
  padding: 0;
}

.footer-wrapper {
  background: linear-gradient(to bottom, #eeeeee 50%, #00291d 50%);
  padding: 40px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.footer-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info {
  flex: 2;
  font-size: 14px;
  color: #00291d;
}

.footer-info h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-info p {
  margin: 4px 0;
}

.footer-info a {
  color: #006400;
  text-decoration: underline;
}

.footer-logos {
  flex: 1;
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center;
  padding: 20px 0;
  max-width: 100%;
  overflow: hidden;
}

.footer-logos img {
  max-height: 80px;     /* Altura máxima ajustable */
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

.footer-social div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #00291d;
  border-bottom: 2px solid #a5cd39;
  padding-bottom: 4px;
}

.footer-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
}

.footer-links a {
  color: #00291d;
  text-decoration: underline;
  border-bottom: 2px solid #a5cd39;
  padding-bottom: 2px;
}

.footer-bottom {
  background-color: #3d82ff;
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.footer-bottom img {
  height: 28px;
}
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .contenido {
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
  }

  .franja {
    font-size: 28px;
    text-align: center;
  }

  .formulario {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }

  .info-pico-placa,
  .vehiculos-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .divisor,
  .vehiculos-divider {
    display: none;
  }

  .info-columna,
  .vehiculos-left,
  .vehiculos-right {
    padding: 0;
    text-align: justify;
  }

  .vehiculos-right {
    text-align: center;
  }

  .paso-paso {
    gap: 30px;
    padding: 40px 20px;
  }

  .card {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  .footer-header {
    flex-direction: column;
    align-items: center;
  }

  .footer-info,
  .footer-logos,
  .footer-social,
  .footer-links {
    text-align: center;
    justify-content: center;
  }

  .footer-social {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

.tarjetas-precio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e0ecff);
}

.tarjeta {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.icono-carro {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.tarjeta h2 {
  font-size: 2rem;
  color: green;
  margin-bottom: 10px;
}

.tarjeta p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 20px;
}

.boton-pago {
  display: inline-block;
  background-color: green;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-pago:hover {
  background-color: lightgreen;
}
